Package test

Source Code of test.TestPasswordOnlyDialog

/*
* Created on Jan 26, 2004
*/
package test;

import nz.co.transparent.client.gui.util.PasswordOnlyDialog;

/**
* @author John Zoetebier
*/
public class TestPasswordOnlyDialog {

  /**
   * 
   */
  public TestPasswordOnlyDialog() {
    super();
  }

  public static void main(String[] args) {

    PasswordOnlyDialog p = new PasswordOnlyDialog(null, "Test");
    System.out.println("Pass: " + p.showDialog());
    //p.dispose();
    p = null;
    System.exit(0);
  }
}
TOP

Related Classes of test.TestPasswordOnlyDialog

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.